How to Build Portfolio Website And Host It on GitHub Pages?
Having an online portfolio is important for showcasing your skills and accomplishments. GitHub Pages provides a convenient and free platform for hosting your portfolio website. In this article, we will see how to build a Portfolio Website And Host It on GitHub Pages....
read more
How to create a progress bar using HTML and CSS?
The progress bar is an important element in the web, the progress bar can be used for downloading, marks obtained, skill measuring unit, etc. To create a progress bar we can use HTML and CSS. To make that progress bar responsive you will need JavaScript.In this article, we will learn to create progress bars using HTML and CSS....
read more
How to Make, Save, and Run a Simple VBScript Program?
VBScript is a lightweight scripting version of the popular Microsoft Visual Basic, developed by as the name suggests, Microsoft. It is used to develop dynamic web pages. It is much lighter compared to Visual Basic programming language but works as a scripting language like JavaScript. To run VBScript on the client-side, the client must have to use Internet Explorer because other browsers are still not supported by the VBScript....
read more
How to Install PHP GD in Windows?
GD is an open-source code library that is required to create and manipulate images in PHP. It is used for creating PNG, JPEG, and GIF images. It is commonly used to create charts, graphics, thumbnails, etc, and website development is the most common application of GD. It was originally developed by Thomas Boutell and is now maintained by Pierre-A. Joye under the umbrella of PHP.net. The GD library support should be enabled for working with image functions in PHP. In this article we will learn how to install PHP GD in windows:...
read more
What is a Webhook and How to Use it?
Webhooks allow interaction between web-based applications through the use of custom callbacks. The use of webhooks allows web applications to automatically communicate with other web-apps. Unlike traditional systems where one system (subject) keeps polling another system (observer) for some data, Webhooks allow the observer to push data into the subject’s system automatically whenever some event occurs....
read more
How to Setup Sublime Text 3 for Python in Windows?
Written by a Google engineer sublime text is a cross-platform IDE developed in C++ and Python. It has basic built-in support for Python. Sublime text is fast and you can customize this editor as per your need to create a full-fledged Python development environment. You can install packages such as debugging, auto-completion, code linting, etc. There are also various packages for scientific development, Django, Flask, and so on....
read more
How to dynamically create new elements in JavaScript ?
New elements can be dynamically created in JavaScript with the help of createElement() method. The attributes of the created element can be set using the setAttribute() method. The examples given below would demonstrate this approach....
read more
Create a website using HTML CSS and JavaScript that stores data in Firebase
Following are some simple steps in order to connect our static Web Page with Firebase....
read more
Building a Basic Chrome Extension
Want to add extra functionality to your Chrome browser or create a useful tool? Developing a Chrome extension is a great starting point! In this tutorial, we’ll break down the essential steps of building your first basic (yet functional) extension....
read more
How to Add GIT Credentials on Windows?
Managing Git credentials on Windows is important for seamless interaction with remote repositories. Whether you’re pushing code to GitHub, GitLab, or another Git service, storing your credentials securely can save you from repeatedly entering your username and password. This article will walk you through various methods to add and manage Git credentials on Windows effectively....
read more
How to Access Localhost on Mobile Browsers?
If you are working on some projects or on websites or web applications and wanted to take its look on mobile, if yes then please read these articles full it will help you a lot in the development. If you want to run your application in mobile browsers without much trouble, then read these articles till the end. Yes, of course, you can use your chrome inspect tools for that which you can find on right-click on chrome browsers and then choose device toggle toolbar. For better learning about chrome, dev-tools learn from here Chrome Inspect Element Tool & Shortcut....
read more
How to install the ext-curl extension with PHP 7 ?
The ext-curl CURL stands for client user, In Linux cURL is a PHP extension, that allows us to receive and send information via the URL syntax. And ext-curl is the extension in the latest PHP-7 which is loaded with some of the advanced features of the basic curls....
read more